Welcome![Sign In][Sign Up]
Location:
Search - image matlab

Search list

[Compress-Decompress algrithmsSPIHT(Matlab).zip

Description:

% Matlab implementation of SPIHT (without Arithmatic coding stage)
%
% By Jing Tian, scuteejtian@hotmail.com

fprintf('-----------   Welcome to SPIHT Matlab Demo!   ----------------\n');

fprintf('-----------   Load Image   ----------------\n');
infilename = 'lena512.bmp';
outfilename = 'lena512_reconstruct.bmp';

Orig_I = double(imread(infilename));

rate = 1;

OrigSize = size(Orig_I, 1);
max_bits = floor(rate * OrigSize^2);
OutSize = OrigSize;
image_spiht = zeros(size(Orig_I));
[nRow, nColumn] = size(Orig_I);

fprintf('done!\n');
fprintf('-----------   Wavelet Decomposition   ----------------\n');
n = size(Orig_I,1);
n_log = log2(n);
level = n_log;
% wavelet decomposition level can be defined by users manually.
type = 'bior4.4';
[Lo_D,Hi_D,Lo_R,Hi_R] = wfilters(type);

[I_W, S] = func_DWT(Orig_I, level, Lo_D, Hi_D);

fprintf('done!\n');

fprintf('-----------   Encoding   ----------------\n');
img_enc = func_SPIHT_Enc(I_W, max_bits, nRow*nColumn, level);  

fprintf('done!\n');
fprintf('-----------   Decoding   ----------------\n');
img_dec = func_SPIHT_Dec(img_enc);

fprintf('done!\n');
fprintf('-----------   Wavelet Reconstruction   ----------------\n');
img_spiht = func_InvDWT(img_dec, S, Lo_R, Hi_R, level);

fprintf('done!\n');
fprintf('-----------   PSNR analysis   ----------------\n');

imwrite(img_spiht, gray(256), outfilename, 'bmp');

Q = 255;
MSE = sum(sum((img_spiht-Orig_I).^2))/nRow / nColumn;
fprintf('The psnr performance is %.2f dB\n', 10*log10(Q*Q/MSE));


Platform: | Size: 232873 | Author: jasonchang | Hits:

[Other resourceimage(matlab)

Description: 图象处理(Matlab) EdgeDectect.m ImageCompress.m ImageEnhance.m ImageRec.m ImageTrans.m 及3张事例图片-image processing (Matlab) EdgeDectect.m ImageCompre ss.m ImageEnhance.m ImageRec.m ImageTrans.m three stories and pictures
Platform: | Size: 55787 | Author: 蓄意周 | Hits:

[Other resourceImage(matlab)

Description: 本文为介绍matlab图像处理方面的电子书
Platform: | Size: 8235880 | Author: | Hits:

[Special Effectsimage-matlab

Description: 图像基本处理方法源代码,内有数十个matlab编写的代码。
Platform: | Size: 18606 | Author: syx317 | Hits:

[Other resourceimage-matlab

Description: 图象8个位图象的实现,请带标准lena图象解压-Image 8-bit image to achieve, please take the standard image decompression lena
Platform: | Size: 60450 | Author: 周贤 | Hits:

[Other resource802.11a的MT及TUL图像的MATLAB仿真源程序

Description: 802.11a的MT及TUL图像的MATLAB仿真源程序-802.11a MT and TUL image MATLAB source
Platform: | Size: 3730 | Author: 戴旭 | Hits:

[matlab咖吗滤波matlab

Description:

function [h,s,v] = rgb2hsv(r,g,b)
%RGB2HSV Convert red-green-blue colors to hue-saturation-value.
%   H = RGB2HSV(M) converts an RGB color map to an HSV color map.
%   Each map is a matrix with any number of rows, exactly three columns,
%   and elements in the interval 0 to 1.  The columns of the input matrix,
%   M, represent intensity of red, blue and green, respectively.  The
%   columns of the resulting output matrix, H, represent hue, saturation
%   and color value, respectively.
%
%   HSV = RGB2HSV(RGB) converts the RGB image RGB (3-D array) to the
%   equivalent HSV image HSV (3-D array).


Platform: | Size: 1517 | Author: leohee | Hits:

[DocumentsA MATLAB Toolbox for Hyperspectral Image Analysis

Description: 本文是在IEEE上发表的一片关于如何使用Matlab中的高光谱图像处理工具箱(HIAT)的英文文献。其中介绍了高光谱图像处理软件的发展及现状。并详细介绍了Matlab中的高光谱图像处理工具箱(HIAT)的功能及使用。并进行举例演示,说明了使用HIAT处理高光谱图像的优点和便利之处。
Platform: | Size: 531279 | Author: wangqifanstudy@163.com | Hits:

[Software Engineering冈萨雷斯数字图像处理matlab版源码V1.1.3

Description: README file for the DIPUM Toolbox. These MATLAB functions were created for the book Digital Image Processing Using MATLAB (DIPUM), by R.C. Gonzalez, R.E. Woods, and S.L. Eddins, Prentice Hall, 2004, ISBN 0130085197. The functions supplement and extend the image processing functionality of MATLAB and the Image Processing Toolbox, both offered by The MathWorks.
Platform: | Size: 276065 | Author: massacreformash | Hits:

[Wavelet小波边缘检测matlab程序

Description: 一个关于图像边缘检测的实用程序-A practical program for image edge check
Platform: | Size: 1024 | Author: | Hits:

[Windows Developmatlab-chapter4

Description: matlab 图象开发 chapter 4-Matlab Image Development chapter 4
Platform: | Size: 239616 | Author: 夏雪 | Hits:

[Documentsmatlab图像函数

Description: 关于matlab图像函数的说明-Matlab image functions on the note
Platform: | Size: 428032 | Author: 空格 | Hits:

[Graph program现代图像处理技术及Matlab实现

Description: 现代图像处理技术及Matlab实现-modern image processing technology and Matlab
Platform: | Size: 4096 | Author: 卢东岳 | Hits:

[Booksmatlab辅助图像处理源代码

Description: 用于图像处理与分析-for image processing and analysis
Platform: | Size: 53248 | Author: 魏建明 | Hits:

[Waveletmatlab

Description: 压缩文件中包含用小波变换、傅里叶变换、哈达玛变换、离散余弦变换实现图像压缩的源码,和一个绘制图像直方图及均衡化后的图像的直方图的程序。-Zip file contains the wavelet transform, Fourier transform, Hadamard transform, discrete cosine transform image compression source code, and a procedure of drawing image histogram .
Platform: | Size: 3072 | Author: Lucy | Hits:

[Special Effectsimage-matlab-source-code

Description: 计算机图像处理冈萨雷斯数字图像处理matlab版源码,对初始学习的同学很有帮助!-digital image processing using matlab source code
Platform: | Size: 327680 | Author: david | Hits:

[Algorithmimage-matlab-code

Description: 数字图像处理的Matlab代码源程序,很详细,解压后直接运行就行了-Digital image Matlab code, detailed
Platform: | Size: 3072 | Author: willion | Hits:

[Special Effects图像分割中常用的水平集方法的matlab源代码

Description: 图像分割是图像分析的关键步骤,而水平集方法是图像分割的一项热门方法,它有着许多算法不具有的优点,尤其可用于分割背景复杂信息难以提取的医学图像。这里是一些水平集分割图像的matlab的实现例子,希望可以帮到大家。(Image segmentation is the key step of image analysis, while the level set method is a popular image segmentation method, it has many advantages that the algorithm does not have, especially can be used for medical image segmentation of complex background information is difficult to extract. Here is some level set segmentation image matlab example, I hope we can help you.)
Platform: | Size: 141312 | Author: 水滴123 | Hits:

[Special EffectsImage Segmentation

Description: 包括了数字图像处理中的图像分割若干MATLAB代码(digital image processing using matlab of image segmentation)
Platform: | Size: 974848 | Author: tjulyk | Hits:

[matlabImage

Description: Image super-resolution via sparse representation
Platform: | Size: 24196096 | Author: ggyyqq | Hits:
« 1 2 34 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net